home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_06 / 9n06076b < prev    next >
Encoding:
Text File  |  1995-11-01  |  371 b   |  17 lines

  1.  
  2. Listing 2:  New getopt() Command Line Processing
  3. ================================================
  4.  
  5. while ((option = getopt (argc, argv, optstring)) != NONOPT) ||
  6.        (optarg != NULL)) {
  7.     switch (option) {
  8.     case 'a': ...
  9.     case 'b': ...
  10.     ...
  11.     case '?': ... error ...
  12.     case NONOPT: ... process optarg ...
  13.     default:  break ;
  14.     }
  15. }
  16.  
  17.